home *** CD-ROM | disk | FTP | other *** search
/ Aminet 22 / Aminet 22 (1997)(GTI - Schatztruhe)[!][Dec 1997].iso / Aminet / dev / c / C_V43_DT.readme < prev    next >
Text File  |  1997-11-02  |  9KB  |  217 lines

  1. Short:    How: OS3 V40/43 PicDatatype in 100% C
  2. Author:   Andreas_Kleinert@t-online.de
  3. Uploader: Andreas_Kleinert@t-online.de
  4. Type:     dev/c
  5.  
  6.  
  7.   samplePNM.datatype and source-code V43.10 (29.9.97)
  8.   (C) 1996-97 by Andreas R. Kleinert. All rights reserved.
  9.  
  10.   ---
  11.   This small sample datatype source code demonstrates, how to completely
  12.   write an Amiga OS 3 datatype (V40/V43) without any assembler stubs
  13.   or compiler/linker tricks in PURE C source code (currently SAS/C-based:
  14.   see Aminet:dev/c/CLib37x.LHA on how to adjust for some other compilers).
  15.  
  16.   You may e.g. use this example source code to write more portable
  17.   Amiga OS 3 datatypes to allow easier porting of these
  18.   to other Amiga OS-derived operating systems, or the native
  19.   OS of an upcoming PowerPC Amiga.
  20.  
  21.   Translate your 68k-assembler datatype startup-codes smartly
  22.   to C by simply using this source-code as an advice how to do it.
  23.  
  24.  
  25.   As a common case, a datatype of class picture, supporting
  26.   PNM-PGM (P5) and PNM-PPM (P6) has been used as an example.
  27.  
  28.   With picture.datatype V40-42 only PGM is supported,
  29.   and with picture.datatype V43 reading of PPM is offered as well,
  30.   while encountering an PGM file under V43 causes a fallback to V40
  31.   routines (could have been done differently, but was not necessary
  32.   here just for demonstration).
  33.  
  34.   For testing this datatype, simply use a tool from the NetPBM package
  35.   (or maybe for example a tool supporting superview.library) and save
  36.   a graphics in the binary PGM or PPM format (P5/P6 of the PNM series).
  37.  
  38.   Then install this datatype and try loading the file via MultiView.
  39.   Should work fine.
  40.  
  41.   ---
  42.   Feel free to use this source for own projects.
  43.  
  44.   It is allowed to be spread and distributed anywhere, as far
  45.   as my consent is concerned.
  46.  
  47.   Amiga Technologies, or the current owner of the technologie,
  48.   is allowed to always put this source on their newest
  49.   Developer CD-ROM.
  50.  
  51.   Thanks and credits will always be appreciated - for example,
  52.   you MAY, but NEED NOT:
  53.   give me credits in your program's docs, send me keyfiles for
  54.   your programs using the library, and so on.
  55.   But that's simply voluntarily.
  56.  
  57.   This work was only roughly inspired by David Junod's original
  58.   example source codes for datatypes.
  59.  
  60.    _________________________________________________________
  61.   |      You may reach me the following way.                |
  62.   |    Send bug-reports, money or whatever to:              |
  63.   |---------------------------------------------------------|
  64.   |        * SuperView Development & Registration *         |
  65.   |          * DRAFU Development & Registration *           |
  66.   |       * Image Engineer Registration Site Europe *       |
  67.   |                                                         |
  68.   |                                                         |
  69.   |                  PerSuaSiVe SoftWorX                    |
  70.   |                                                         |
  71.   |                  Andreas R. Kleinert                    |
  72.   |                  Sandstrasse 1                          |
  73.   |                  D-57072 Siegen                         |
  74.   |                  Germany, Europe                        |
  75.   |                                                         |
  76.   | Any snail mail to the old address will still be routed. |
  77.   |                                                         |
  78.   |                  Phone:  +49-271-22869 also FAX + AM    |
  79.   |                          +49-271-22838                  |
  80.   |                                                         |
  81.   |                  Weekdays after 17.00h.                 |
  82.   |                                                         |
  83.   |         When calling via phone you may leave a message, |
  84.   |         if I'm not available - but don't expect me      |
  85.   |         calling back to USA, Australia, ... since       |
  86.   |         german phone rates are HIGHLY expensive.        |
  87.   |_________________________________________________________|
  88.  
  89.     http://home.t-online.de/home/Andreas_Kleinert/
  90.  
  91.   eMail:
  92.  
  93.         Please send binaries via ARK@News.wwbnet.de, and keep
  94.         them smaller than 16 KB. Please think twice before
  95.         sending them - my postbox is not unlimited in size.
  96.  
  97.            - Fido    Andreas Kleinert 2:2457/350.18
  98.            - Usenet
  99.                      Andreas_Kleinert@superview.ftn.neckar-alb.de (Fido-Gate)
  100.                      Andreas_Kleinert@t-online.de                 (T-Online)
  101.                      ARK@News.wwbnet.de                           (Z-Netz)
  102.                      ARK@amigaworld.com                           (AmigaWorld)
  103.  
  104.            - If nothing else works, try one of these public
  105.              Fido-Usenet gateways:
  106.  
  107.                In Germany:
  108.                  Andreas_Kleinert@p18.f350.n2457.z2.fido.sub.org
  109.  
  110.                From USA or elsewhere:
  111.                  Andreas_Kleinert@p18.f350.n2457.z2.fidonet.org
  112.  
  113.         Please note, that the "superview.ftn.sub.org"
  114.         domain will perhaps be renamed soon
  115.  
  116.  
  117.  Known Bugs:        - some versions of DOpus and all Installer versions
  118.                       can't fetch the version information from the
  119.                       library binary due to some bugs in their code.
  120.                       Newer DOpus versions have this fixed and C:Version
  121.                       for example did that task always.
  122.  
  123.                       See also: Aminet:dev/GetVersion.lha for a fix.
  124.  
  125.  History:
  126.  
  127.  V43.10 (29.9.97): - added note about GetVersion.lha
  128.                    - rewrote Dispatch() routine completely,
  129.                      implemented new routines derived
  130.                      from Roland Mainz' improved sample code
  131.                    - DTM_WRITE now can be forced to its
  132.                      old behaviour by specifying the hidden
  133.                      prefs option "OLD_DTM_WRITE"
  134.                      (IFF-ILBM then will be written without
  135.                       any error code given because of
  136.                       unsupported DTWR_RAW)
  137.                    - etc.
  138.  
  139.  V43.9 (29.6.97) : - fixed memory bug-fix (argh)
  140.                      (-> Gunter Nikl)
  141.  
  142.  V43.8 (24.6.97) :  - again removed class dispatcher code (refresh bug)
  143.                     - added "known bugs" section
  144.                     - LibInit now delocates library base on error
  145.                       (NULL return)
  146.                       (-> Gunter Nikl)
  147.  
  148.  V43.7 (14.6.97) :  - fixed ftn-email address
  149.                     - updated class dispatcher
  150.                       (-> Roland Mainz)
  151.  
  152.  V43.6 (27.3.97) :  - did some finetuning
  153.                     - now can simply be turned into a V40 datatype
  154.                       by removing a #define (and/or the corresponding
  155.                       parts of the code)
  156.  
  157.  V43.5 (25.1.97) :  - now explicitely checks for DTA_SourceType == DTST_File
  158.                     - small changes
  159.                     - updated email information
  160.  
  161.  V43.4 (3.1.97) :   - fixed PRI entry in resident part
  162.                     - slightly changed SCOPTIONS
  163.                     - fixed some style things (APTR and library casts)
  164.                     - fixed a bug: bitmap would not have been freed
  165.                       on temporary-buffer allocation error
  166.                     - added note about library opening to L_OpenLibs()
  167.  
  168.  V43.3 (30.11.96) : - added SAS/C specific Ctrl-C disabling code
  169.                     - made some workarounds compiler sensitive
  170.                     - redone all with SAS/C V6.57
  171.  
  172.  V43.2 (3.11.96)  : - there was a FreeBitMap() call missing (oops)
  173.                     - it's samplePNM.dt, not samplePNG.dt ;-)
  174.  
  175.  V43.1 (25.10.96) : - added picture datatype V43 support
  176.                     - thus added support for 24 Bit PPM (P6),
  177.                       since PGM only has 256 grayscales
  178.                     - thus renamed to samplePNM.datatype
  179.  
  180.  V40.3 (13.9.96)  : - fixed more "style" things
  181.  
  182.  V40.2 (5.9.96)   : - fixed some "style" things
  183.  
  184.  V40.1 (2.9.96)   : - first release
  185.  
  186.  ---
  187.  All mentioned trademarks are subject to their owners.
  188.  
  189.  
  190. ============================= Archive contents =============================
  191.  
  192. Original  Packed Ratio    Date     Time    Name
  193. -------- ------- ----- --------- --------  -------------
  194.       86      76 11.6% 25-Oct-96 16:26:52 +PGM
  195.      467     279 40.2% 25-Oct-96 16:26:52 +PGM.info
  196.       86      76 11.6% 25-Oct-96 16:27:44 +PPM
  197.      467     279 40.2% 25-Oct-96 16:27:44 +PPM.info
  198.      107     102  4.6% 25-Oct-96 17:34:40 +CompileNote.readme
  199.      739     301 59.2% 25-Oct-96 16:17:50 +libfuncs.h
  200.      835     388 53.5% 25-Oct-96 16:28:52 +samplePNM.datatype.info
  201.      408     156 61.7% 25-Oct-96 16:23:58 +smakefile
  202.      119     104 12.6% 25-Oct-96 16:23:58 +smakefile.wth
  203.      795     364 54.2% 03-Jan-97 15:21:22 +classbase.h
  204.      212     149 29.7% 27-Mar-97 10:44:44 +SCOPTIONS
  205.      803     453 43.5% 27-Mar-97 10:40:40 +Readme.SAS
  206.     4277    1217 71.5% 29-Jun-97 15:16:42 +StartUp.c
  207.     4956    2611 47.3% 29-Sep-97 11:57:34 +samplePNM.datatype
  208.    13703    3493 74.5% 29-Sep-97 11:56:54 +libfuncs.c
  209.     3916    2155 44.9% 29-Sep-97 11:57:30 +libfuncs.o
  210.     4909    1495 69.5% 29-Sep-97 11:53:30 +LibInit.c
  211.     1492     815 45.3% 29-Sep-97 11:56:12 +LibInit.o
  212.     4956    2611 47.3% 29-Sep-97 11:57:34 +samplePNM.datatype
  213.      852     506 40.6% 29-Sep-97 11:57:00 +StartUp.o
  214.     7833    3000 61.7% 29-Sep-97 11:53:06 +README
  215. -------- ------- ----- --------- --------
  216.    52018   20630 60.3% 30-Sep-97 19:39:36   21 files
  217.